$>
from Functor型クラス
<$の逆版
($>) :: Functor f => f a -> b -> f b
docs
f aの要素を全部bに置き換える
code:hs
>> 1,2,3 $> "hoge"
"hoge","hoge","hoge"